home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / cit.arc / LIBVERS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-01-22  |  1.5 KB  |  46 lines

  1. /************************************************************************/
  2. /*                libvers.c                */
  3. /*            version of Citadel-86                */
  4. /************************************************************************/
  5.  
  6. #include "ctdl.h"
  7.  
  8. /************************************************************************/
  9. /*                history                 */
  10. /*                                    */
  11. /* 85Dec06 HAW    Created.                        */
  12. /************************************************************************/
  13.  
  14. /************************************************************************/
  15. /*                Contents                */
  16. /*                                    */
  17. /*    fixVers()        The fixes version            */
  18. /*    majorVers()        The commands version            */
  19. /*    netVers()        The net version             */
  20. /************************************************************************/
  21.  
  22. /************************************************************************/
  23. /*    fixVers() returns fix version. This may make keeping track of    */
  24. /*    where someone is easier.                    */
  25. /************************************************************************/
  26. fixVers()
  27. {
  28.     return 37;
  29. }
  30.  
  31. /************************************************************************/
  32. /*    majorVers() returns the version...                */
  33. /************************************************************************/
  34. majorVers()
  35. {
  36.     return 10;
  37. }
  38.  
  39. /************************************************************************/
  40. /*    netVersion()  returns current version of the net        */
  41. /************************************************************************/
  42. char *netVersion()
  43. {
  44.     return "1.1";    /* Current version is now in date        */
  45. }
  46.